home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Interactive CD Sampler / Microsoft Interactive CD Sampler.iso / DEMOS / PICTURE / PICTURI2.DIR / 00051.ls < prev    next >
Encoding:
Text File  |  1996-09-05  |  1.6 KB  |  58 lines

  1. on exitFrame
  2.   cursor(200)
  3.   set the visible of sprite 20 to 1
  4.   puppetSprite(4, 1)
  5.   puppetSprite(5, 1)
  6.   puppetSprite(6, 1)
  7.   puppetSprite(7, 1)
  8.   puppetSprite(8, 1)
  9.   puppetSprite(9, 1)
  10.   puppetSprite(20, 1)
  11.   set the locH of sprite 20 to the mouseH
  12.   set the locV of sprite 20 to the mouseV
  13.   if rollOver(4) then
  14.     set the castNum of sprite 4 to the number of member "capturehot"
  15.   else
  16.     if rollOver(4) = 0 then
  17.       set the castNum of sprite 4 to the number of member "capturebox"
  18.     end if
  19.   end if
  20.   if rollOver(5) then
  21.     set the castNum of sprite 5 to the number of member "createhot"
  22.   else
  23.     if rollOver(5) = 0 then
  24.       set the castNum of sprite 5 to the number of member "createbox"
  25.     end if
  26.   end if
  27.   if rollOver(6) then
  28.     set the castNum of sprite 6 to the number of member "printhot"
  29.   else
  30.     if rollOver(6) = 0 then
  31.       set the castNum of sprite 6 to the number of member "printbox"
  32.     end if
  33.   end if
  34.   if rollOver(7) then
  35.     set the castNum of sprite 7 to the number of member "picturehot"
  36.   else
  37.     if rollOver(7) = 0 then
  38.       set the castNum of sprite 7 to the number of member "picturebox"
  39.     end if
  40.   end if
  41.   if rollOver(8) then
  42.     set the castNum of sprite 8 to the number of member "helphot"
  43.   else
  44.     if rollOver(8) = 0 then
  45.       set the castNum of sprite 8 to the number of member "helpbox"
  46.     end if
  47.   end if
  48.   if rollOver(9) then
  49.     set the castNum of sprite 9 to the number of member "quithot"
  50.   else
  51.     if rollOver(9) = 0 then
  52.       set the castNum of sprite 9 to the number of member "quitbox"
  53.     end if
  54.   end if
  55.   updateStage()
  56.   go(the frame)
  57. end
  58.